home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / s_to_z / tu / projtu.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  278 b   |  15 lines

  1. program Projtu;
  2.  
  3. uses
  4.   Forms,
  5.   Tumain in 'TUMAIN.PAS' {FormTUMain},
  6.   Vwerrdlg in 'VWERRDLG.PAS' {BtnBottomDlg};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TFormTUMain, FormTUMain);
  12.   Application.CreateForm(TBtnBottomDlg, BtnBottomDlg);
  13.   Application.Run;
  14. end.
  15.